HTMLify
index.html
Views: 452 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="style.css"> <link rel="shortcut icon" href="assets/drawing-pad.png" type="image/x-icon"> <title>Drawing Pad</title> </head> <body> <h3>Drawing Pad</h3> <div class="sidebar"> <ul> <li> <li class="checkboxContainer"> <label for="gradient">Gradient</label> <input type="checkbox" name="gradient" id="gradient"> </li> <label for="color">Color:</label> <input type="color" id="color" /> <label for="color">Gradient:</label> <input type="color" id="color2" disabled /> </li> <li class="strokeContainer"> <label for="weight">Stroke:</label> <input type="number" id="weight" min="2" max="200" value="3" /> </li> <li class="radio"> <input type="radio" id="pencil" name="tool" value="Pencil" checked> <label for="pencil">Pencil</label> </li> <li class="radio"> <input type="radio" id="line" name="tool" value="Line"> <label for="line">Line</label> </li> <li class="radio"> <input type="radio" id="rect" name="tool" value="Rect"> <label for="rect">Rect</label> </li> <li class="radio"> <input type="radio" id="circle" name="tool" value="Circle"> <label for="circle">Circle</label> </li> <li> <button id="clear">Clear</button> </li> <li></li> </ul> </div> <footer> <p>< / > with ❤️ by <a href="https://swapnilsparsh.github.io/">Swapnil Srivastava</a> <br> <a href="https://github.com/swapnilsparsh/30DaysOfJavaScript" target="_blank">#30DaysOfJavaScript </a> </p> </footer> <!-- Using p5.js --> <script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/p5.min.js"></script> <script src="script.js"></script> </body> </html> |